The title attribute should always be used in the frame or iframe element.

41

The title attribute should always be used in the 'frame' or 'iframe' element. -

 <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>A document using iframe</title>
  </head>
...
<iframe src="banner-ad.html" id="testiframe" 
  name="testiframe" title="Advertisement">
    <a href="banner-ad.html">Advertisement</a>
</iframe>
...
</html>  

Comments

Submit
0 Comments